
/* 加载中 */

#startUI {
	width: 100%;
	height: 100vh;
    background: rgba(10, 93, 102, 1);
    font-size: 14px;
    font-family: Compasse-Thin;
    font-weight: lighter;
    color: #ffffff;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#startUI > span:nth-child(1) {
    width: 60px;
    height: 24px;
    text-align: center;
    line-height: 27px;
}

#startUI > span:nth-child(2) {
    width: 24px;
    height: 24px;
    margin-left: -2px;
    background-image: url('../images/loading.png');
    background-position: center;
    animation: load-page 3s linear infinite;
    transition: all 0.3s;
}

@keyframes load-page {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}